home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj0287.arc / MAKEFILE < prev    next >
Text File  |  1986-12-15  |  466b  |  19 lines

  1. # makefile for time delay and sound routines 
  2.  
  3. # --- timing and sound functions --- 
  4. delay.obj:    delay.c timer.h 
  5. getticks.obj:    getticks.c  
  6. setfreq.obj:    setfreq.c timer.h 
  7. sound.obj:    sound.c sound.h 
  8. sounds.obj:    sounds.c 
  9. spkr.obj:    spkr.c sound.h 
  10. tone.obj:    tone.c 
  11.  
  12. # --- demonstration programs --- 
  13. sounds.exe:    sounds.obj sound.obj 
  14.     link $* sound delay getticks setfreq; 
  15. spkr.exe:    spkr.obj 
  16.     link $*; 
  17. tone.exe:    tone.obj 
  18.     link $* setfreq; 
  19.